-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix wild cards handling #9066
fix wild cards handling #9066
Conversation
sdk/appconfiguration/azure-appconfiguration/tests/test_azure_configuration_client_aad.py
Outdated
Show resolved
Hide resolved
Can one of the admins verify this patch? |
/azp run azure-sdk-for-python - update_pr |
Azure Pipelines successfully started running 1 pipeline(s). |
@@ -358,7 +337,7 @@ def test_list_configuration_settings_multi_pages(self): | |||
pass | |||
|
|||
def test_list_configuration_settings_null_label(self): | |||
items = self.app_config_client.list_configuration_settings(labels=[""]) | |||
items = self.app_config_client.list_configuration_settings(label_filter="\0") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Doesn't seem right, you used to have code code to replace an empty string with "\0" so customer never see "\0", why not keeping it?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. We used to escape the char for the user and in the new design, we will let user escape it by themselves. This is a change by design.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
new arg names better 👍
No description provided.